/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v2012                                 |
|   \\  /    A nd           | Website:  www.openfoam.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

scale   1;

vertices
(
    (0 0 0)         //0
    (0.016 0 0)     //1
    (0 1 0)         //2
    (0.016 1 0)     //3
    (0 0 0.016)     //4
    (0.016 0 0.016) //5
    (0 1 0.016)     //6
    (0.016 1 0.016) //7
);

blocks
(
    hex (0 1 3 2 4 5 7 6) (20 1000 1) simpleGrading (1 0.2 1)
);

edges
(
);

boundary
(
    sideWall1

    {
        type            wall;
        faces           ((0 4 6 2));
    }

    sideWall2

    {
        type            wall;
        faces           ((1 3 7 5));
    }
    
    front
    {
        type            empty;
        faces           ((4 5 7 6));     
    }

    back
    {
        type            empty;
        faces           ((0 1 3 2));     
    }

    inlet
    {
        type            patch;
        faces           ((0 1 5 4));
    }

    outlet
    {
        type            patch;
        faces           ((2 6 7 3));
    }
);

mergePatchPairs
(
);
